home *** CD-ROM | disk | FTP | other *** search
/ MacWorld Secrets (4th Edition) / Mac Secrets CD 4th Ed.toast.sit / Mac Secrets CD 4th Ed.toast / Apple Advanced Technologies / Apple Speech Technologies 1.5 / PlainTalk Developer Info / Speech Recognition Manager SDK / SR Sample Code / MakeStrLanguageModel / MakeStrLanguageModel.h < prev   
Encoding:
C/C++ Source or Header  |  1996-02-22  |  1.1 KB  |  38 lines  |  [TEXT/MPS ]

  1. /************************************************************
  2.  
  3. Created: Wednesday, May 4, 1994 at 5:40:38 PM
  4.     MakeStrLanguageModel.h
  5.     
  6.     An example function library which will build a
  7.     speech recognition language model from STR# resource(s).
  8.  
  9.         Copyright Apple Computer, Inc.    1994
  10.         All rights reserved
  11.  
  12. ************************************************************/
  13.  
  14.  
  15. #ifndef        __MAKESTRLANGUAGEMODEL__
  16. #define        __MAKESTRLANGUAGEMODEL__
  17.  
  18. #ifndef        __SPEECHRECOGNITION__
  19. #include    "SpeechRecognition.h"
  20. #endif
  21.  
  22. /* A function to build a simple SRLanguageModel from an 'STR#' resource.
  23.  
  24.     The indexed strings are turned into SRPhrase elements of the
  25.     SRLanguageModel, each with a refcon value set to the index within
  26.     the string.
  27.     
  28.     The SRLanguageModel itself has the stringList resource id stored
  29.     as its refcon, allowing the program to switch off of the resID to
  30.     find which language model is which, and further off of a known
  31.     string index (1 based) which is obtained from the SRPhrase.
  32. */
  33.  
  34. OSErr MakeStrLanguageModel (SRRecognitionSystem recSystem,
  35.     SRLanguageModel *languageModel, short stringListID);
  36.  
  37. #endif    /* __MAKESTRLANGUAGEMODEL__ */
  38.